home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / program / tmlwgtsn.zip / EXAMPLE.PAS < prev    next >
Pascal/Delphi Source File  |  1996-05-19  |  524b  |  33 lines

  1. unit Example;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls, Langreg;
  8.  
  9. type
  10.   TForm1 = class(TForm)
  11.     ExampleWizard: TMLWizard;
  12.     MLLabel2: TMLLabel;
  13.     procedure FormCreate(Sender: TObject);
  14.   private
  15.     { Private declarations }
  16.   public
  17.     { Public declarations }
  18.   end;
  19.  
  20. var
  21.   Form1: TForm1;
  22.  
  23. implementation
  24.  
  25. {$R *.DFM}
  26.  
  27. procedure TForm1.FormCreate(Sender: TObject);
  28. begin
  29.   ExampleWizard.SetCaptions;
  30. end;
  31.  
  32. end.
  33.